From 79ad34698ce168955a752f5670a5a8fef05f54d7 Mon Sep 17 00:00:00 2001 From: Glenn Morris Date: Sat, 3 Nov 2012 11:03:39 -0700 Subject: [PATCH] * lisp/emacs-lisp/cl-macs.el (cl-do-all-symbols): Add doc string. --- lisp/ChangeLog | 4 ++++ lisp/emacs-lisp/cl-macs.el | 3 +++ 2 files changed, 7 insertions(+) diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 1402174593a..7c373668c32 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,7 @@ +2012-11-03 Glenn Morris + + * emacs-lisp/cl-macs.el (cl-do-all-symbols): Add doc string. + 2012-11-03 Eli Zaretskii * term/pc-win.el: Don't load term/internal from here. diff --git a/lisp/emacs-lisp/cl-macs.el b/lisp/emacs-lisp/cl-macs.el index a448973c1bb..e7a66ad1b1a 100644 --- a/lisp/emacs-lisp/cl-macs.el +++ b/lisp/emacs-lisp/cl-macs.el @@ -1579,6 +1579,9 @@ from OBARRAY. ;;;###autoload (defmacro cl-do-all-symbols (spec &rest body) + "Like `cl-do-symbols', but use the default obarray. + +\(fn (VAR [RESULT]) BODY...)" (declare (indent 1) (debug ((symbolp &optional form) cl-declarations body))) `(cl-do-symbols (,(car spec) nil ,(cadr spec)) ,@body)) -- 2.30.2